Kotlin JS GitHub Action SDK
/
com.rnett.action.delegates
/
map
map
inline fun <
D
,
T
,
R
>
ReadOnlyProperty
<
D
,
T
>.
map
(crossinline read: (
T
) ->
R
):
ReadOnlyProperty
<
D
,
R
>
Content copied to clipboard
inline fun <
D
,
T
>
ReadWriteProperty
<
D
,
T
>.
map
(crossinline read: (
T
) ->
T
):
ReadWriteProperty
<
D
,
T
>
Content copied to clipboard
Map reads from a delegate
inline fun <
D
,
T
,
R
>
ReadWriteProperty
<
D
,
T
>.
map
(crossinline read: (
T
) ->
R
, crossinline write: (
R
) ->
T
):
ReadWriteProperty
<
D
,
R
>
Content copied to clipboard
Map reads from and writes to a delegate